home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / win / 1b.zip / FILE.DOT < prev    next >
Text File  |  1992-01-31  |  2KB  |  58 lines

  1. +-----------------------------------------------------------------------+
  2. +    Output translation for use with redirection of output to file    +
  3. +    for DOS.                            +
  4. +                                    +
  5. +    Output using this translation includes Ctrl-O and Ctrl-N chars.    +
  6. +    For normal ASCII text file output, please use ASCII.        +
  7. +-----------------------------------------------------------------------+
  8.  
  9. +    The file produced using this translate table may be used
  10. +    as direct input to  APL,  for example when used with the
  11. +    transfer workspace : XFER.
  12. +
  13. +    $ apl MYWS > myws.xfer        # Output MYWS to Ascii script.
  14. +    ...
  15. +        )COPY XFER
  16. +    ...
  17. +        )OFF
  18. +
  19. +    $ apl < myws.xfer        # Recreate MYWS from Ascii script.
  20.  
  21. +-----------------------------------------------------------------------+
  22. +    Uses asc_apl translation with line-drawing mode              +
  23. +       selected by Ctrl-g                            +
  24. +-----------------------------------------------------------------------+
  25.  
  26. MOD:asc_apl
  27.  
  28. +-----------------------------------------------------------------------+
  29. +    Screen modes                            +
  30. +-----------------------------------------------------------------------+
  31.  
  32. M0:    15 *        + Ascii
  33. M1:    14 *        + Apl
  34. M2:     7 *        + Line Drawing
  35.  
  36. +-----------------------------------------------------------------------+
  37. +    Operating System dependent Line Terminators            +
  38. +-----------------------------------------------------------------------+
  39.  
  40. 2:    13 10 *        + DOS ...
  41. 3:    13 10 *        + ... New Line
  42.  
  43. +-----------------------------------------------------------------------+
  44. +    Line Drawing Characters                        +
  45. +-----------------------------------------------------------------------+
  46.  
  47. 220:    , ,    51    + Lower Right Corner    3 ------.
  48. 221:    , ,    57    + Upper Right Corner    9    |
  49. 222:    , ,    55    + Upper Left Corner    7    |
  50. 223:    , ,    49    + Lower Left Corner    1    |
  51. 224:    , ,    53    + Crossing Lines    5    |
  52. 225:    , ,    46    + Horizontal Bar    .    | Line Drawing Chars
  53. 226:    , ,    52    + Left  T        4    |
  54. 227:    , ,    54    + Right T        6    |
  55. 228:    , ,    50    + Lower T        2    |
  56. 229:    , ,    56    + Upper T        8    |
  57. 230:    , ,    48    + Vertical Bar        0 ------'
  58.